home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-09-26  |  1.4 KB  |  41 lines

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8.  
  9. /*
  10.  * Define the version number, name, etc.
  11.  * The patchlevel is in included_patches[], in version.c.
  12.  *
  13.  * This doesn't use string contatenation, some compilers don't support it.
  14.  */
  15.  
  16. #define VIM_VERSION_MAJOR         6
  17. #define VIM_VERSION_MAJOR_STR        "6"
  18. #define VIM_VERSION_MINOR         0
  19. #define VIM_VERSION_MINOR_STR        "0"
  20. #define VIM_VERSION_100        (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
  21.  
  22. #define VIM_VERSION_BUILD         150
  23. #define VIM_VERSION_BUILD_BCD        0x32
  24. #define VIM_VERSION_BUILD_STR        "150"
  25. #define VIM_VERSION_PATCHLEVEL         0
  26. #define VIM_VERSION_PATCHLEVEL_STR    "0"
  27. /* Used by MacOS port should be one of: development, alpha, beta, final */
  28. #define VIM_VERSION_RELEASE        final
  29.  
  30. /*
  31.  * VIM_VERSION_NODOT is used for the runtime directory name.
  32.  * VIM_VERSION_SHORT is copied into the swap file (max. length is 6 chars).
  33.  * VIM_VERSION_MEDIUM is used for the startup-screen.
  34.  * VIM_VERSION_LONG is used for the ":version" command and "Vim -h".
  35.  */
  36. #define VIM_VERSION_NODOT    "vim60"
  37. #define VIM_VERSION_SHORT    "6.0"
  38. #define VIM_VERSION_MEDIUM    "6.0"
  39. #define VIM_VERSION_LONG    "VIM - Vi IMproved 6.0 (2001 Sep 26)"
  40. #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 6.0 (2001 Sep 26, compiled "
  41.